home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / sun / management / MethodInfo.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  883 b   |  33 lines

  1. package sun.management;
  2.  
  3. import java.io.Serializable;
  4.  
  5. public class MethodInfo implements Serializable {
  6.    private String name;
  7.    private long type;
  8.    private int compileSize;
  9.    private static final long serialVersionUID = 6992337162326171013L;
  10.  
  11.    MethodInfo(String var1, long var2, int var4) {
  12.       this.name = var1;
  13.       this.type = var2;
  14.       this.compileSize = var4;
  15.    }
  16.  
  17.    public String getName() {
  18.       return this.name;
  19.    }
  20.  
  21.    public long getType() {
  22.       return this.type;
  23.    }
  24.  
  25.    public int getCompileSize() {
  26.       return this.compileSize;
  27.    }
  28.  
  29.    public String toString() {
  30.       return this.getName() + " type = " + this.getType() + " compileSize = " + this.getCompileSize();
  31.    }
  32. }
  33.